home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / gmp-132.lha / gmp-1.3.2 / mpz_random.c < prev    next >
C/C++ Source or Header  |  1993-05-02  |  2KB  |  69 lines

  1. /* mpz_random -- Generate a random MP_INT of specified size.
  2.  
  3. Copyright (C) 1991, 1993 Free Software Foundation, Inc.
  4.  
  5. This file is part of the GNU MP Library.
  6.  
  7. The GNU MP Library is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2, or (at your option)
  10. any later version.
  11.  
  12. The GNU MP Library is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with the GNU MP Library; see the file COPYING.  If not, write to
  19. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  20.  
  21. #include "gmp.h"
  22. #include "gmp-impl.h"
  23.  
  24. #if defined (hpux) || defined (__alpha__)
  25. /* HPUX lacks random().  DEC Alpha's random() returns a double.  */
  26. static inline long
  27. urandom ()
  28. {
  29.   return mrand48 ();
  30. }
  31. #else
  32. long random ();
  33.  
  34. static inline long
  35. urandom ()
  36. {
  37.   /* random() returns 31 bits, we want 32.  */
  38.   return random() ^ (random() << 1);
  39. }
  40. #endif
  41.  
  42. void
  43. #ifdef __STDC__
  44. mpz_random (MP_INT *x, mp_size size)
  45. #else
  46. mpz_random (x, size)
  47.      MP_INT *x;
  48.      mp_size size;
  49. #endif
  50. {
  51.   mp_size i;
  52.   mp_limb ran;
  53.  
  54.   if (x->alloc < size)
  55.     _mpz_realloc (x, size);
  56.  
  57.   for (i = 0; i < size; i++)
  58.     {
  59.       ran = urandom ();
  60.       x->d[i] = ran;
  61.     }
  62.  
  63.   for (i = size - 1; i >= 0; i--)
  64.     if (x->d[i] != 0)
  65.       break;
  66.  
  67.   x->size = i + 1;
  68. }
  69.